How to create a hyperlink that opens in a new tab/window in HTML?
How to create a hyperlink that opens in a new tab/window in HTML?
15305-Jun-2024
Updated on 05-Jun-2024
Home / DeveloperSection / Forums / How to create a hyperlink that opens in a new tab/window in HTML?
How to create a hyperlink that opens in a new tab/window in HTML?
Ashutosh Kumar Verma
05-Jun-2024Hyperlink in HTML
There is HTML <a> tag is used to create the hyperlink on the web page.
Syntax-
To create a hyperlink that opens in a new tab or window in HTML, you can use the
target
attribute with the value "_blank".Example-
Explaition